home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / php.ini-dist < prev    next >
INI File  |  2005-03-30  |  42KB  |  1,193 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;
  4. ; WARNING ;
  5. ;;;;;;;;;;;
  6. ; This is the default settings file for new PHP installations.
  7. ; By default, PHP installs itself with a configuration suitable for
  8. ; development purposes, and *NOT* for production purposes.
  9. ; For several security-oriented considerations that should be taken
  10. ; before going online with your site, please consult php.ini-recommended
  11. ; and http://php.net/manual/en/security.php.
  12.  
  13.  
  14. ;;;;;;;;;;;;;;;;;;;
  15. ; About php.ini   ;
  16. ;;;;;;;;;;;;;;;;;;;
  17. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  18. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  19. ; working directory, in the path designated by the environment variable
  20. ; PHPRC, and in the path that was defined in compile time (in that order).
  21. ; Under Windows, the compile-time path is the Windows directory.  The
  22. ; path in which the php.ini file is looked for can be overridden using
  23. ; the -c argument in command line mode.
  24. ;
  25. ; The syntax of the file is extremely simple.  Whitespace and Lines
  26. ; beginning with a semicolon are silently ignored (as you probably guessed).
  27. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  28. ; they might mean something in the future.
  29. ;
  30. ; Directives are specified using the following syntax:
  31. ; directive = value
  32. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  33. ;
  34. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  35. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  36. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  37. ;
  38. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  39. ; |        bitwise OR
  40. ; &        bitwise AND
  41. ; ~        bitwise NOT
  42. ; !        boolean NOT
  43. ;
  44. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  45. ; They can be turned off using the values 0, Off, False or No.
  46. ;
  47. ; An empty string can be denoted by simply not writing anything after the equal
  48. ; sign, or by using the None keyword:
  49. ;
  50. ;  foo =         ; sets foo to an empty string
  51. ;  foo = none    ; sets foo to an empty string
  52. ;  foo = "none"  ; sets foo to the string 'none'
  53. ;
  54. ; If you use constants in your value, and these constants belong to a
  55. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  56. ; you may only use these constants *after* the line that loads the extension.
  57. ;
  58. ;
  59. ;;;;;;;;;;;;;;;;;;;
  60. ; About this file ;
  61. ;;;;;;;;;;;;;;;;;;;
  62. ; All the values in the php.ini-dist file correspond to the builtin
  63. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  64. ; the builtin defaults will be identical).
  65.  
  66.  
  67. ;;;;;;;;;;;;;;;;;;;;
  68. ; Language Options ;
  69. ;;;;;;;;;;;;;;;;;;;;
  70.  
  71. ; Enable the PHP scripting language engine under Apache.
  72. engine = On
  73.  
  74. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  75. zend.ze1_compatibility_mode = Off
  76.  
  77. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  78. ; NOTE: Using short tags should be avoided when developing applications or
  79. ; libraries that are meant for redistribution, or deployment on PHP
  80. ; servers which are not under your control, because short tags may not
  81. ; be supported on the target server. For portable, redistributable code,
  82. ; be sure not to use short tags.
  83. short_open_tag = On
  84.  
  85. ; Allow ASP-style <% %> tags.
  86. asp_tags = Off
  87.  
  88. ; The number of significant digits displayed in floating point numbers.
  89. precision    =  12
  90.  
  91. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  92. y2k_compliance = On
  93.  
  94. ; Output buffering allows you to send header lines (including cookies) even
  95. ; after you send body content, at the price of slowing PHP's output layer a
  96. ; bit.  You can enable output buffering during runtime by calling the output
  97. ; buffering functions.  You can also enable output buffering for all files by
  98. ; setting this directive to On.  If you wish to limit the size of the buffer
  99. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  100. ; a value for this directive (e.g., output_buffering=4096).
  101. output_buffering = Off
  102.  
  103. ; You can redirect all of the output of your scripts to a function.  For
  104. ; example, if you set output_handler to "mb_output_handler", character
  105. ; encoding will be transparently converted to the specified encoding.
  106. ; Setting any output handler automatically turns on output buffering.
  107. ; Note: People who wrote portable scripts should not depend on this ini
  108. ;       directive. Instead, explicitly set the output handler using ob_start().
  109. ;       Using this ini directive may cause problems unless you know what script
  110. ;       is doing.
  111. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  112. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  113. ; Note: output_handler must be empty if this is set 'On' !!!!
  114. ;       Instead you must use zlib.output_handler.
  115. ;output_handler =
  116.  
  117. ; Transparent output compression using the zlib library
  118. ; Valid values for this option are 'off', 'on', or a specific buffer size
  119. ; to be used for compression (default is 4KB)
  120. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  121. ;       outputs chunks that are few hundreds bytes each as a result of
  122. ;       compression. If you prefer a larger chunk size for better
  123. ;       performance, enable output_buffering in addition.
  124. ; Note: You need to use zlib.output_handler instead of the standard
  125. ;       output_handler, or otherwise the output will be corrupted.
  126. zlib.output_compression = Off
  127.  
  128. ; You cannot specify additional output handlers if zlib.output_compression
  129. ; is activated here. This setting does the same as output_handler but in
  130. ; a different order.
  131. ;zlib.output_handler =
  132.  
  133. ; Implicit flush tells PHP to tell the output layer to flush itself
  134. ; automatically after every output block.  This is equivalent to calling the
  135. ; PHP function flush() after each and every call to print() or echo() and each
  136. ; and every HTML block.  Turning this option on has serious performance
  137. ; implications and is generally recommended for debugging purposes only.
  138. implicit_flush = Off
  139.  
  140. ; The unserialize callback function will be called (with the undefined class'
  141. ; name as parameter), if the unserializer finds an undefined class
  142. ; which should be instanciated.
  143. ; A warning appears if the specified function is not defined, or if the
  144. ; function doesn't include/implement the missing class.
  145. ; So only set this entry, if you really want to implement such a
  146. ; callback-function.
  147. unserialize_callback_func=
  148.  
  149. ; When floats & doubles are serialized store serialize_precision significant
  150. ; digits after the floating point. The default value ensures that when floats
  151. ; are decoded with unserialize, the data will remain the same.
  152. serialize_precision = 100
  153.  
  154. ; Whether to enable the ability to force arguments to be passed by reference
  155. ; at function call time.  This method is deprecated and is likely to be
  156. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  157. ; specifying which arguments should be passed by reference is in the function
  158. ; declaration.  You're encouraged to try and turn this option Off and make
  159. ; sure your scripts work properly with it in order to ensure they will work
  160. ; with future versions of the language (you will receive a warning each time
  161. ; you use this feature, and the argument will be passed by value instead of by
  162. ; reference).
  163. allow_call_time_pass_reference = On
  164.  
  165. ;
  166. ; Safe Mode
  167. ;
  168. safe_mode = Off
  169.  
  170. ; By default, Safe Mode does a UID compare check when
  171. ; opening files. If you want to relax this to a GID compare,
  172. ; then turn on safe_mode_gid.
  173. safe_mode_gid = Off
  174.  
  175. ; When safe_mode is on, UID/GID checks are bypassed when
  176. ; including files from this directory and its subdirectories.
  177. ; (directory must also be in include_path or full path must
  178. ; be used when including)
  179. safe_mode_include_dir =
  180.  
  181. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  182. ; will be allowed to be executed via the exec family of functions.
  183. safe_mode_exec_dir =
  184.  
  185. ; Setting certain environment variables may be a potential security breach.
  186. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  187. ; the user may only alter environment variables whose names begin with the
  188. ; prefixes supplied here.  By default, users will only be able to set
  189. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  190. ;
  191. ; Note:  If this directive is empty, PHP will let the user modify ANY
  192. ; environment variable!
  193. safe_mode_allowed_env_vars = PHP_
  194.  
  195. ; This directive contains a comma-delimited list of environment variables that
  196. ; the end user won't be able to change using putenv().  These variables will be
  197. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  198. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  199.  
  200. ; open_basedir, if set, limits all file operations to the defined directory
  201. ; and below.  This directive makes most sense if used in a per-directory
  202. ; or per-virtualhost web server configuration file. This directive is
  203. ; *NOT* affected by whether Safe Mode is turned On or Off.
  204. ;open_basedir =
  205.  
  206. ; This directive allows you to disable certain functions for security reasons.
  207. ; It receives a comma-delimited list of function names. This directive is
  208. ; *NOT* affected by whether Safe Mode is turned On or Off.
  209. disable_functions =
  210.  
  211. ; This directive allows you to disable certain classes for security reasons.
  212. ; It receives a comma-delimited list of class names. This directive is
  213. ; *NOT* affected by whether Safe Mode is turned On or Off.
  214. disable_classes =
  215.  
  216. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  217. ; <span style="color: ???????"> would work.
  218. ;highlight.string  = #DD0000
  219. ;highlight.comment = #FF9900
  220. ;highlight.keyword = #007700
  221. ;highlight.bg      = #FFFFFF
  222. ;highlight.default = #0000BB
  223. ;highlight.html    = #000000
  224.  
  225.  
  226. ;
  227. ; Misc
  228. ;
  229. ; Decides whether PHP may expose the fact that it is installed on the server
  230. ; (e.g. by adding its signature to the Web server header).  It is no security
  231. ; threat in any way, but it makes it possible to determine whether you use PHP
  232. ; on your server or not.
  233. expose_php = On
  234.  
  235.  
  236. ;;;;;;;;;;;;;;;;;;;
  237. ; Resource Limits ;
  238. ;;;;;;;;;;;;;;;;;;;
  239.  
  240. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  241. max_input_time = 60    ; Maximum amount of time each script may spend parsing request data
  242. memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
  243.  
  244.  
  245. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  246. ; Error handling and logging ;
  247. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  248.  
  249. ; error_reporting is a bit-field.  Or each number up to get desired error
  250. ; reporting level
  251. ; E_ALL             - All errors and warnings (doesn't include E_STRICT)
  252. ; E_ERROR           - fatal run-time errors
  253. ; E_WARNING         - run-time warnings (non-fatal errors)
  254. ; E_PARSE           - compile-time parse errors
  255. ; E_NOTICE          - run-time notices (these are warnings which often result
  256. ;                     from a bug in your code, but it's possible that it was
  257. ;                     intentional (e.g., using an uninitialized variable and
  258. ;                     relying on the fact it's automatically initialized to an
  259. ;                     empty string)
  260. ; E_STRICT            - run-time notices, enable to have PHP suggest changes
  261. ;                     to your code which will ensure the best interoperability
  262. ;                     and forward compatibility of your code
  263. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  264. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  265. ;                     initial startup
  266. ; E_COMPILE_ERROR   - fatal compile-time errors
  267. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  268. ; E_USER_ERROR      - user-generated error message
  269. ; E_USER_WARNING    - user-generated warning message
  270. ; E_USER_NOTICE     - user-generated notice message
  271. ;
  272. ; Examples:
  273. ;
  274. ;   - Show all errors, except for notices and coding standards warnings
  275. ;
  276. ;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
  277. ;
  278. ;   - Show all errors, except for notices
  279. ;
  280. ;error_reporting = E_ALL & ~E_NOTICE
  281. ;
  282. ;   - Show only errors
  283. ;
  284. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  285. ;
  286. ;   - Show all errors except for notices and coding standards warnings
  287. ;
  288. error_reporting  =  E_ALL & ~E_NOTICE & ~E_STRICT
  289.  
  290. ; Print out errors (as a part of the output).  For production web sites,
  291. ; you're strongly encouraged to turn this feature off, and use error logging
  292. ; instead (see below).  Keeping display_errors enabled on a production web site
  293. ; may reveal security information to end users, such as file paths on your Web
  294. ; server, your database schema or other information.
  295. display_errors = On
  296.  
  297. ; Even when display_errors is on, errors that occur during PHP's startup
  298. ; sequence are not displayed.  It's strongly recommended to keep
  299. ; display_startup_errors off, except for when debugging.
  300. display_startup_errors = Off
  301.  
  302. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  303. ; As stated above, you're strongly advised to use error logging in place of
  304. ; error displaying on production web sites.
  305. log_errors = Off
  306.  
  307. ; Set maximum length of log_errors. In error_log information about the source is
  308. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  309. log_errors_max_len = 1024
  310.  
  311. ; Do not log repeated messages. Repeated errors must occur in same file on same
  312. ; line until ignore_repeated_source is set true.
  313. ignore_repeated_errors = Off
  314.  
  315. ; Ignore source of message when ignoring repeated messages. When this setting
  316. ; is On you will not log errors with repeated messages from different files or
  317. ; sourcelines.
  318. ignore_repeated_source = Off
  319.  
  320. ; If this parameter is set to Off, then memory leaks will not be shown (on
  321. ; stdout or in the log). This has only effect in a debug compile, and if
  322. ; error reporting includes E_WARNING in the allowed list
  323. report_memleaks = On
  324.  
  325. ; Store the last error/warning message in $php_errormsg (boolean).
  326. track_errors = Off
  327.  
  328. ; Disable the inclusion of HTML tags in error messages.
  329. ; Note: Never use this feature for production boxes.
  330. ;html_errors = Off
  331.  
  332. ; If html_errors is set On PHP produces clickable error messages that direct
  333. ; to a page describing the error or function causing the error in detail.
  334. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  335. ; and change docref_root to the base URL of your local copy including the
  336. ; leading '/'. You must also specify the file extension being used including
  337. ; the dot.
  338. ; Note: Never use this feature for production boxes.
  339. ;docref_root = "/phpmanual/"
  340. ;docref_ext = .html
  341.  
  342. ; String to output before an error message.
  343. ;error_prepend_string = "<font color=ff0000>"
  344.  
  345. ; String to output after an error message.
  346. ;error_append_string = "</font>"
  347.  
  348. ; Log errors to specified file.
  349. ;error_log = filename
  350.  
  351. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  352. ;error_log = syslog
  353.  
  354.  
  355. ;;;;;;;;;;;;;;;;;
  356. ; Data Handling ;
  357. ;;;;;;;;;;;;;;;;;
  358. ;
  359. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  360.  
  361. ; The separator used in PHP generated URLs to separate arguments.
  362. ; Default is "&".
  363. ;arg_separator.output = "&"
  364.  
  365. ; List of separator(s) used by PHP to parse input URLs into variables.
  366. ; Default is "&".
  367. ; NOTE: Every character in this directive is considered as separator!
  368. ;arg_separator.input = ";&"
  369.  
  370. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  371. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  372. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  373. ; values override older values.
  374. variables_order = "EGPCS"
  375.  
  376. ; Whether or not to register the EGPCS variables as global variables.  You may
  377. ; want to turn this off if you don't want to clutter your scripts' global scope
  378. ; with user data.  This makes most sense when coupled with track_vars - in which
  379. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  380. ; variables.
  381. ;
  382. ; You should do your best to write your scripts so that they do not require
  383. ; register_globals to be on;  Using form variables as globals can easily lead
  384. ; to possible security problems, if the code is not very well thought of.
  385. register_globals = Off
  386.  
  387. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  388. ; and friends.  If you're not using them, it's recommended to turn them off,
  389. ; for performance reasons.
  390. register_long_arrays = On
  391.  
  392. ; This directive tells PHP whether to declare the argv&argc variables (that
  393. ; would contain the GET information).  If you don't use these variables, you
  394. ; should turn it off for increased performance.
  395. register_argc_argv = On
  396.  
  397. ; Maximum size of POST data that PHP will accept.
  398. post_max_size = 8M
  399.  
  400. ; Magic quotes
  401. ;
  402.  
  403. ; Magic quotes for incoming GET/POST/Cookie data.
  404. magic_quotes_gpc = On
  405.  
  406. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  407. magic_quotes_runtime = Off
  408.  
  409. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  410. magic_quotes_sybase = Off
  411.  
  412. ; Automatically add files before or after any PHP document.
  413. auto_prepend_file =
  414. auto_append_file =
  415.  
  416. ; As of 4.0b4, PHP always outputs a character encoding by default in
  417. ; the Content-type: header.  To disable sending of the charset, simply
  418. ; set it to be empty.
  419. ;
  420. ; PHP's built-in default is text/html
  421. default_mimetype = "text/html"
  422. ;default_charset = "iso-8859-1"
  423.  
  424. ; Always populate the $HTTP_RAW_POST_DATA variable.
  425. ;always_populate_raw_post_data = On
  426.  
  427.  
  428. ;;;;;;;;;;;;;;;;;;;;;;;;;
  429. ; Paths and Directories ;
  430. ;;;;;;;;;;;;;;;;;;;;;;;;;
  431.  
  432. ; UNIX: "/path1:/path2"
  433. ;include_path = ".:/php/includes"
  434. ;
  435. ; Windows: "\path1;\path2"
  436. ;include_path = ".;c:\php\includes"
  437.  
  438. ; The root of the PHP pages, used only if nonempty.
  439. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  440. ; if you are running php as a CGI under any web server (other than IIS)
  441. ; see documentation for security issues.  The alternate is to use the
  442. ; cgi.force_redirect configuration below
  443. doc_root =
  444.  
  445. ; The directory under which PHP opens the script using /~username used only
  446. ; if nonempty.
  447. user_dir =
  448.  
  449. ; Directory in which the loadable extensions (modules) reside.
  450. extension_dir = "./"
  451.  
  452. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  453. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  454. ; disabled on them.
  455. enable_dl = On
  456.  
  457. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  458. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  459. ; turn it off here AT YOUR OWN RISK
  460. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  461. ; cgi.force_redirect = 1
  462.  
  463. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  464. ; every request.
  465. ; cgi.nph = 1
  466.  
  467. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  468. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  469. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  470. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  471. ; cgi.redirect_status_env = ;
  472.  
  473. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  474. ; security tokens of the calling client.  This allows IIS to define the
  475. ; security context that the request runs under.  mod_fastcgi under Apache
  476. ; does not currently support this feature (03/17/2002)
  477. ; Set to 1 if running under IIS.  Default is zero.
  478. ; fastcgi.impersonate = 1;
  479.  
  480. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  481. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  482. ; is supported by Apache. When this option is set to 1 PHP will send
  483. ; RFC2616 compliant header.
  484. ; Default is zero.
  485. ;cgi.rfc2616_headers = 0
  486.  
  487.  
  488. ;;;;;;;;;;;;;;;;
  489. ; File Uploads ;
  490. ;;;;;;;;;;;;;;;;
  491.  
  492. ; Whether to allow HTTP file uploads.
  493. file_uploads = On
  494.  
  495. ; Temporary directory for HTTP uploaded files (will use system default if not
  496. ; specified).
  497. ;upload_tmp_dir =
  498.  
  499. ; Maximum allowed size for uploaded files.
  500. upload_max_filesize = 2M
  501.  
  502.  
  503. ;;;;;;;;;;;;;;;;;;
  504. ; Fopen wrappers ;
  505. ;;;;;;;;;;;;;;;;;;
  506.  
  507. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  508. allow_url_fopen = On
  509.  
  510. ; Define the anonymous ftp password (your email address)
  511. ;from="john@doe.com"
  512.  
  513. ; Define the User-Agent string
  514. ; user_agent="PHP"
  515.  
  516. ; Default timeout for socket based streams (seconds)
  517. default_socket_timeout = 60
  518.  
  519. ; If your scripts have to deal with files from Macintosh systems,
  520. ; or you are running on a Mac and need to deal with files from
  521. ; unix or win32 systems, setting this flag will cause PHP to
  522. ; automatically detect the EOL character in those files so that
  523. ; fgets() and file() will work regardless of the source of the file.
  524. ; auto_detect_line_endings = Off
  525.  
  526.  
  527. ;;;;;;;;;;;;;;;;;;;;;;
  528. ; Dynamic Extensions ;
  529. ;;;;;;;;;;;;;;;;;;;;;;
  530. ;
  531. ; If you wish to have an extension loaded automatically, use the following
  532. ; syntax:
  533. ;
  534. ;   extension=modulename.extension
  535. ;
  536. ; For example, on Windows:
  537. ;
  538. ;   extension=msql.dll
  539. ;
  540. ; ... or under UNIX:
  541. ;
  542. ;   extension=msql.so
  543. ;
  544. ; Note that it should be the name of the module only; no directory information
  545. ; needs to go here.  Specify the location of the extension with the
  546. ; extension_dir directive above.
  547.  
  548.  
  549. ;Windows Extensions
  550. ;Note that ODBC support is built in, so no dll is needed for it.
  551. ;
  552.  
  553. ;extension=php_bz2.dll
  554. ;extension=php_cpdf.dll
  555. ;extension=php_curl.dll
  556. ;extension=php_dba.dll
  557. ;extension=php_dbase.dll
  558. ;extension=php_dbx.dll
  559. ;extension=php_exif.dll
  560. ;extension=php_fdf.dll
  561. ;extension=php_filepro.dll
  562. ;extension=php_gd2.dll
  563. ;extension=php_gettext.dll
  564. ;extension=php_ifx.dll
  565. ;extension=php_iisfunc.dll
  566. ;extension=php_imap.dll
  567. ;extension=php_interbase.dll
  568. ;extension=php_java.dll
  569. ;extension=php_ldap.dll
  570. ;extension=php_mbstring.dll
  571. ;extension=php_mcrypt.dll
  572. ;extension=php_mhash.dll
  573. ;extension=php_mime_magic.dll
  574. ;extension=php_ming.dll
  575. ;extension=php_mssql.dll
  576. ;extension=php_msql.dll
  577. ;extension=php_mysql.dll
  578. ;extension=php_oci8.dll
  579. ;extension=php_openssl.dll
  580. ;extension=php_oracle.dll
  581. ;extension=php_pdf.dll
  582. ;extension=php_pgsql.dll
  583. ;extension=php_shmop.dll
  584. ;extension=php_snmp.dll
  585. ;extension=php_sockets.dll
  586. ;extension=php_sybase_ct.dll
  587. ;extension=php_tidy.dll
  588. ;extension=php_w32api.dll
  589. ;extension=php_xmlrpc.dll
  590. ;extension=php_xsl.dll
  591. ;extension=php_yaz.dll
  592. ;extension=php_zip.dll
  593.  
  594.  
  595. ;;;;;;;;;;;;;;;;;;;
  596. ; Module Settings ;
  597. ;;;;;;;;;;;;;;;;;;;
  598.  
  599. [Syslog]
  600. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  601. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  602. ; runtime, you can define these variables by calling define_syslog_variables().
  603. define_syslog_variables  = Off
  604.  
  605. [mail function]
  606. ; For Win32 only.
  607. SMTP = localhost
  608. smtp_port = 25
  609.  
  610. ; For Win32 only.
  611. ;sendmail_from = me@example.com
  612.  
  613. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  614. ;sendmail_path =
  615.  
  616. ; Force the addition of the specified parameters to be passed as extra parameters
  617. ; to the sendmail binary. These parameters will always replace the value of
  618. ; the 5th parameter to mail(), even in safe mode.
  619. ;mail.force_extra_parameters =
  620.  
  621. [SQL]
  622. sql.safe_mode = Off
  623.  
  624. [ODBC]
  625. ;odbc.default_db    =  Not yet implemented
  626. ;odbc.default_user  =  Not yet implemented
  627. ;odbc.default_pw    =  Not yet implemented
  628.  
  629. ; Allow or prevent persistent links.
  630. odbc.allow_persistent = On
  631.  
  632. ; Check that a connection is still valid before reuse.
  633. odbc.check_persistent = On
  634.  
  635. ; Maximum number of persistent links.  -1 means no limit.
  636. odbc.max_persistent = -1
  637.  
  638. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  639. odbc.max_links = -1
  640.  
  641. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  642. ; passthru.
  643. odbc.defaultlrl = 4096
  644.  
  645. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  646. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  647. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  648. odbc.defaultbinmode = 1
  649.  
  650. [MySQL]
  651. ; Allow or prevent persistent links.
  652. mysql.allow_persistent = On
  653.  
  654. ; Maximum number of persistent links.  -1 means no limit.
  655. mysql.max_persistent = -1
  656.  
  657. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  658. mysql.max_links = -1
  659.  
  660. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  661. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  662. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  663. ; at MYSQL_PORT.
  664. mysql.default_port =
  665.  
  666. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  667. ; MySQL defaults.
  668. mysql.default_socket =
  669.  
  670. ; Default host for mysql_connect() (doesn't apply in safe mode).
  671. mysql.default_host =
  672.  
  673. ; Default user for mysql_connect() (doesn't apply in safe mode).
  674. mysql.default_user =
  675.  
  676. ; Default password for mysql_connect() (doesn't apply in safe mode).
  677. ; Note that this is generally a *bad* idea to store passwords in this file.
  678. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  679. ; and reveal this password!  And of course, any users with read access to this
  680. ; file will be able to reveal the password as well.
  681. mysql.default_password =
  682.  
  683. ; Maximum time (in secondes) for connect timeout. -1 means no limit
  684. mysql.connect_timeout = 60
  685.  
  686. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  687. ; SQL-Errors will be displayed.
  688. mysql.trace_mode = Off
  689.  
  690. [MySQLI]
  691.  
  692. ; Maximum number of links.  -1 means no limit.
  693. mysqli.max_links = -1
  694.  
  695. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  696. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  697. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  698. ; at MYSQL_PORT.
  699. mysqli.default_port = 3306
  700.  
  701. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  702. ; MySQL defaults.
  703. mysqli.default_socket =
  704.  
  705. ; Default host for mysql_connect() (doesn't apply in safe mode).
  706. mysqli.default_host =
  707.  
  708. ; Default user for mysql_connect() (doesn't apply in safe mode).
  709. mysqli.default_user =
  710.  
  711. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  712. ; Note that this is generally a *bad* idea to store passwords in this file.
  713. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_password")
  714. ; and reveal this password!  And of course, any users with read access to this
  715. ; file will be able to reveal the password as well.
  716. mysqli.default_password =
  717.  
  718. ; Allow or prevent reconnect
  719. mysqli.reconnect = Off
  720.  
  721. [mSQL]
  722. ; Allow or prevent persistent links.
  723. msql.allow_persistent = On
  724.  
  725. ; Maximum number of persistent links.  -1 means no limit.
  726. msql.max_persistent = -1
  727.  
  728. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  729. msql.max_links = -1
  730.  
  731. [PostgresSQL]
  732. ; Allow or prevent persistent links.
  733. pgsql.allow_persistent = On
  734.  
  735. ; Detect broken persistent links always with pg_pconnect().
  736. ; Auto reset feature requires a little overheads.
  737. pgsql.auto_reset_persistent = Off
  738.  
  739. ; Maximum number of persistent links.  -1 means no limit.
  740. pgsql.max_persistent = -1
  741.  
  742. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  743. pgsql.max_links = -1
  744.  
  745. ; Ignore PostgreSQL backends Notice message or not.
  746. ; Notice message logging require a little overheads.
  747. pgsql.ignore_notice = 0
  748.  
  749. ; Log PostgreSQL backends Noitce message or not.
  750. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  751. pgsql.log_notice = 0
  752.  
  753. [Sybase]
  754. ; Allow or prevent persistent links.
  755. sybase.allow_persistent = On
  756.  
  757. ; Maximum number of persistent links.  -1 means no limit.
  758. sybase.max_persistent = -1
  759.  
  760. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  761. sybase.max_links = -1
  762.  
  763. ;sybase.interface_file = "/usr/sybase/interfaces"
  764.  
  765. ; Minimum error severity to display.
  766. sybase.min_error_severity = 10
  767.  
  768. ; Minimum message severity to display.
  769. sybase.min_message_severity = 10
  770.  
  771. ; Compatability mode with old versions of PHP 3.0.
  772. ; If on, this will cause PHP to automatically assign types to results according
  773. ; to their Sybase type, instead of treating them all as strings.  This
  774. ; compatability mode will probably not stay around forever, so try applying
  775. ; whatever necessary changes to your code, and turn it off.
  776. sybase.compatability_mode = Off
  777.  
  778. [Sybase-CT]
  779. ; Allow or prevent persistent links.
  780. sybct.allow_persistent = On
  781.  
  782. ; Maximum number of persistent links.  -1 means no limit.
  783. sybct.max_persistent = -1
  784.  
  785. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  786. sybct.max_links = -1
  787.  
  788. ; Minimum server message severity to display.
  789. sybct.min_server_severity = 10
  790.  
  791. ; Minimum client message severity to display.
  792. sybct.min_client_severity = 10
  793.  
  794. [dbx]
  795. ; returned column names can be converted for compatibility reasons
  796. ; possible values for dbx.colnames_case are
  797. ; "unchanged" (default, if not set)
  798. ; "lowercase"
  799. ; "uppercase"
  800. ; the recommended default is either upper- or lowercase, but
  801. ; unchanged is currently set for backwards compatibility
  802. dbx.colnames_case = "unchanged"
  803.  
  804. [bcmath]
  805. ; Number of decimal digits for all bcmath functions.
  806. bcmath.scale = 0
  807.  
  808. [browscap]
  809. ;browscap = extra/browscap.ini
  810.  
  811. [Informix]
  812. ; Default host for ifx_connect() (doesn't apply in safe mode).
  813. ifx.default_host =
  814.  
  815. ; Default user for ifx_connect() (doesn't apply in safe mode).
  816. ifx.default_user =
  817.  
  818. ; Default password for ifx_connect() (doesn't apply in safe mode).
  819. ifx.default_password =
  820.  
  821. ; Allow or prevent persistent links.
  822. ifx.allow_persistent = On
  823.  
  824. ; Maximum number of persistent links.  -1 means no limit.
  825. ifx.max_persistent = -1
  826.  
  827. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  828. ifx.max_links = -1
  829.  
  830. ; If on, select statements return the contents of a text blob instead of its id.
  831. ifx.textasvarchar = 0
  832.  
  833. ; If on, select statements return the contents of a byte blob instead of its id.
  834. ifx.byteasvarchar = 0
  835.  
  836. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  837. ; life of Informix SE users.
  838. ifx.charasvarchar = 0
  839.  
  840. ; If on, the contents of text and byte blobs are dumped to a file instead of
  841. ; keeping them in memory.
  842. ifx.blobinfile = 0
  843.  
  844. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  845. ; NULL's are returned as string 'NULL'.
  846. ifx.nullformat = 0
  847.  
  848. [Session]
  849. ; Handler used to store/retrieve data.
  850. session.save_handler = files
  851.  
  852. ; Argument passed to save_handler.  In the case of files, this is the path
  853. ; where data files are stored. Note: Windows users have to change this
  854. ; variable in order to use PHP's session functions.
  855. ;
  856. ; As of PHP 4.0.1, you can define the path as:
  857. ;
  858. ;     session.save_path = "N;/path"
  859. ;
  860. ; where N is an integer.  Instead of storing all the session files in
  861. ; /path, what this will do is use subdirectories N-levels deep, and
  862. ; store the session data in those directories.  This is useful if you
  863. ; or your OS have problems with lots of files in one directory, and is
  864. ; a more efficient layout for servers that handle lots of sessions.
  865. ;
  866. ; NOTE 1: PHP will not create this directory structure automatically.
  867. ;         You can use the script in the ext/session dir for that purpose.
  868. ; NOTE 2: See the section on garbage collection below if you choose to
  869. ;         use subdirectories for session storage
  870. ;
  871. ; The file storage module creates files using mode 600 by default.
  872. ; You can change that by using
  873. ;
  874. ;     session.save_path = "N;MODE;/path"
  875. ;
  876. ; where MODE is the octal representation of the mode. Note that this
  877. ; does not overwrite the process's umask.
  878. ;session.save_path = "/tmp"
  879.  
  880. ; Whether to use cookies.
  881. session.use_cookies = 1
  882.  
  883. ; This option enables administrators to make their users invulnerable to
  884. ; attacks which involve passing session ids in URLs; defaults to 0.
  885. ; session.use_only_cookies = 1
  886.  
  887. ; Name of the session (used as cookie name).
  888. session.name = PHPSESSID
  889.  
  890. ; Initialize session on request startup.
  891. session.auto_start = 0
  892.  
  893. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  894. session.cookie_lifetime = 0
  895.  
  896. ; The path for which the cookie is valid.
  897. session.cookie_path = /
  898.  
  899. ; The domain for which the cookie is valid.
  900. session.cookie_domain =
  901.  
  902. ; Handler used to serialize data.  php is the standard serializer of PHP.
  903. session.serialize_handler = php
  904.  
  905. ; Define the probability that the 'garbage collection' process is started
  906. ; on every session initialization.
  907. ; The probability is calculated by using gc_probability/gc_divisor,
  908. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  909. ; on each request.
  910.  
  911. session.gc_probability = 1
  912. session.gc_divisor     = 100
  913.  
  914. ; After this number of seconds, stored data will be seen as 'garbage' and
  915. ; cleaned up by the garbage collection process.
  916. session.gc_maxlifetime = 1440
  917.  
  918. ; NOTE: If you are using the subdirectory option for storing session files
  919. ;       (see session.save_path above), then garbage collection does *not*
  920. ;       happen automatically.  You will need to do your own garbage
  921. ;       collection through a shell script, cron entry, or some other method.
  922. ;       For example, the following script would is the equivalent of
  923. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  924. ;          cd /path/to/sessions; find -cmin +24 | xargs rm
  925.  
  926. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  927. ; to initialize a session variable in the global scope, albeit register_globals
  928. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  929. ; You can disable the feature and the warning separately. At this time,
  930. ; the warning is only displayed, if bug_compat_42 is enabled.
  931.  
  932. session.bug_compat_42 = 1
  933. session.bug_compat_warn = 1
  934.  
  935. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  936. ; HTTP_REFERER has to contain this substring for the session to be
  937. ; considered as valid.
  938. session.referer_check =
  939.  
  940. ; How many bytes to read from the file.
  941. session.entropy_length = 0
  942.  
  943. ; Specified here to create the session id.
  944. session.entropy_file =
  945.  
  946. ;session.entropy_length = 16
  947.  
  948. ;session.entropy_file = /dev/urandom
  949.  
  950. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  951. ; or leave this empty to avoid sending anti-caching headers.
  952. session.cache_limiter = nocache
  953.  
  954. ; Document expires after n minutes.
  955. session.cache_expire = 180
  956.  
  957. ; trans sid support is disabled by default.
  958. ; Use of trans sid may risk your users security.
  959. ; Use this option with caution.
  960. ; - User may send URL contains active session ID
  961. ;   to other person via. email/irc/etc.
  962. ; - URL that contains active session ID may be stored
  963. ;   in publically accessible computer.
  964. ; - User may access your site with the same session ID
  965. ;   always using URL stored in browser's history or bookmarks.
  966. session.use_trans_sid = 0
  967.  
  968. ; Select a hash function
  969. ; 0: MD5   (128 bits)
  970. ; 1: SHA-1 (160 bits)
  971. session.hash_function = 0
  972.  
  973. ; Define how many bits are stored in each character when converting
  974. ; the binary hash data to something readable.
  975. ;
  976. ; 4 bits: 0-9, a-f
  977. ; 5 bits: 0-9, a-v
  978. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  979. session.hash_bits_per_character = 4
  980.  
  981. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  982. ; form/fieldset are special; if you include them here, the rewriter will
  983. ; add a hidden <input> field with the info which is otherwise appended
  984. ; to URLs.  If you want XHTML conformity, remove the form entry.
  985. ; Note that all valid entries require a "=", even if no value follows.
  986. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
  987.  
  988. [MSSQL]
  989. ; Allow or prevent persistent links.
  990. mssql.allow_persistent = On
  991.  
  992. ; Maximum number of persistent links.  -1 means no limit.
  993. mssql.max_persistent = -1
  994.  
  995. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  996. mssql.max_links = -1
  997.  
  998. ; Minimum error severity to display.
  999. mssql.min_error_severity = 10
  1000.  
  1001. ; Minimum message severity to display.
  1002. mssql.min_message_severity = 10
  1003.  
  1004. ; Compatability mode with old versions of PHP 3.0.
  1005. mssql.compatability_mode = Off
  1006.  
  1007. ; Connect timeout
  1008. ;mssql.connect_timeout = 5
  1009.  
  1010. ; Query timeout
  1011. ;mssql.timeout = 60
  1012.  
  1013. ; Valid range 0 - 2147483647.  Default = 4096.
  1014. ;mssql.textlimit = 4096
  1015.  
  1016. ; Valid range 0 - 2147483647.  Default = 4096.
  1017. ;mssql.textsize = 4096
  1018.  
  1019. ; Limits the number of records in each batch.  0 = all records in one batch.
  1020. ;mssql.batchsize = 0
  1021.  
  1022. ; Specify how datetime and datetim4 columns are returned
  1023. ; On => Returns data converted to SQL server settings
  1024. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1025. ;mssql.datetimeconvert = On
  1026.  
  1027. ; Use NT authentication when connecting to the server
  1028. mssql.secure_connection = Off
  1029.  
  1030. ; Specify max number of processes. Default = 25
  1031. ;mssql.max_procs = 25
  1032.  
  1033. [Assertion]
  1034. ; Assert(expr); active by default.
  1035. ;assert.active = On
  1036.  
  1037. ; Issue a PHP warning for each failed assertion.
  1038. ;assert.warning = On
  1039.  
  1040. ; Don't bail out by default.
  1041. ;assert.bail = Off
  1042.  
  1043. ; User-function to be called if an assertion fails.
  1044. ;assert.callback = 0
  1045.  
  1046. ; Eval the expression with current error_reporting().  Set to true if you want
  1047. ; error_reporting(0) around the eval().
  1048. ;assert.quiet_eval = 0
  1049.  
  1050. [Ingres II]
  1051. ; Allow or prevent persistent links.
  1052. ingres.allow_persistent = On
  1053.  
  1054. ; Maximum number of persistent links.  -1 means no limit.
  1055. ingres.max_persistent = -1
  1056.  
  1057. ; Maximum number of links, including persistents.  -1 means no limit.
  1058. ingres.max_links = -1
  1059.  
  1060. ; Default database (format: [node_id::]dbname[/srv_class]).
  1061. ingres.default_database =
  1062.  
  1063. ; Default user.
  1064. ingres.default_user =
  1065.  
  1066. ; Default password.
  1067. ingres.default_password =
  1068.  
  1069. [Verisign Payflow Pro]
  1070. ; Default Payflow Pro server.
  1071. pfpro.defaulthost = "test-payflow.verisign.com"
  1072.  
  1073. ; Default port to connect to.
  1074. pfpro.defaultport = 443
  1075.  
  1076. ; Default timeout in seconds.
  1077. pfpro.defaulttimeout = 30
  1078.  
  1079. ; Default proxy IP address (if required).
  1080. ;pfpro.proxyaddress =
  1081.  
  1082. ; Default proxy port.
  1083. ;pfpro.proxyport =
  1084.  
  1085. ; Default proxy logon.
  1086. ;pfpro.proxylogon =
  1087.  
  1088. ; Default proxy password.
  1089. ;pfpro.proxypassword =
  1090.  
  1091. [com]
  1092. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1093. ;com.typelib_file =
  1094. ; allow Distributed-COM calls
  1095. ;com.allow_dcom = true
  1096. ; autoregister constants of a components typlib on com_load()
  1097. ;com.autoregister_typelib = true
  1098. ; register constants casesensitive
  1099. ;com.autoregister_casesensitive = false
  1100. ; show warnings on duplicate constat registrations
  1101. ;com.autoregister_verbose = true
  1102.  
  1103. [mbstring]
  1104. ; language for internal character representation.
  1105. ;mbstring.language = Japanese
  1106.  
  1107. ; internal/script encoding.
  1108. ; Some encoding cannot work as internal encoding.
  1109. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1110. ;mbstring.internal_encoding = EUC-JP
  1111.  
  1112. ; http input encoding.
  1113. ;mbstring.http_input = auto
  1114.  
  1115. ; http output encoding. mb_output_handler must be
  1116. ; registered as output buffer to function
  1117. ;mbstring.http_output = SJIS
  1118.  
  1119. ; enable automatic encoding translation accoding to
  1120. ; mbstring.internal_encoding setting. Input chars are
  1121. ; converted to internal encoding by setting this to On.
  1122. ; Note: Do _not_ use automatic encoding translation for
  1123. ;       portable libs/applications.
  1124. ;mbstring.encoding_translation = Off
  1125.  
  1126. ; automatic encoding detection order.
  1127. ; auto means
  1128. ;mbstring.detect_order = auto
  1129.  
  1130. ; substitute_character used when character cannot be converted
  1131. ; one from another
  1132. ;mbstring.substitute_character = none;
  1133.  
  1134. ; overload(replace) single byte functions by mbstring functions.
  1135. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1136. ; etc. Possible values are 0,1,2,4 or combination of them.
  1137. ; For example, 7 for overload everything.
  1138. ; 0: No overload
  1139. ; 1: Overload mail() function
  1140. ; 2: Overload str*() functions
  1141. ; 4: Overload ereg*() functions
  1142. ;mbstring.func_overload = 0
  1143.  
  1144. [FrontBase]
  1145. ;fbsql.allow_persistent = On
  1146. ;fbsql.autocommit = On
  1147. ;fbsql.default_database =
  1148. ;fbsql.default_database_password =
  1149. ;fbsql.default_host =
  1150. ;fbsql.default_password =
  1151. ;fbsql.default_user = "_SYSTEM"
  1152. ;fbsql.generate_warnings = Off
  1153. ;fbsql.max_connections = 128
  1154. ;fbsql.max_links = 128
  1155. ;fbsql.max_persistent = -1
  1156. ;fbsql.max_results = 128
  1157. ;fbsql.batchSize = 1000
  1158.  
  1159. [exif]
  1160. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1161. ; With mbstring support this will automatically be converted into the encoding
  1162. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1163. ; is used. For the decode settings you can distinguish between motorola and
  1164. ; intel byte order. A decode setting cannot be empty.
  1165. ;exif.encode_unicode = ISO-8859-15
  1166. ;exif.decode_unicode_motorola = UCS-2BE
  1167. ;exif.decode_unicode_intel    = UCS-2LE
  1168. ;exif.encode_jis =
  1169. ;exif.decode_jis_motorola = JIS
  1170. ;exif.decode_jis_intel    = JIS
  1171.  
  1172. [Tidy]
  1173. ; The path to a default tidy configuration file to use when using tidy
  1174. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1175.  
  1176. ; Should tidy clean and repair output automatically?
  1177. ; WARNING: Do not use this option if you are generating non-html content
  1178. ; such as dynamic images
  1179. tidy.clean_output = Off
  1180.  
  1181. [soap]
  1182. ; Enables or disables WSDL caching feature.
  1183. soap.wsdl_cache_enabled=1
  1184. ; Sets the directory name where SOAP extension will put cache files.
  1185. soap.wsdl_cache_dir="/tmp"
  1186. ; (time to live) Sets the number of second while cached file will be used 
  1187. ; instead of original one.
  1188. soap.wsdl_cache_ttl=86400
  1189.  
  1190. ; Local Variables:
  1191. ; tab-width: 4
  1192. ; End:
  1193.